git show
他のbranchのfileをみたい。
以前のcommitのファイルを見たい
HEADのファイルを見たい。
gitは、現状のworkingTreeのファイル以外は圧縮されてるので、そのままでは閲覧できない。
圧縮されたobjectを解凍して?見るコマンド。
デフォルトへのrevision?は、HEAD
commit, tags, trees, file
git show HEAD:foo.py
tldrから、
git show は latest commit
git show {{commit}}
git show {{tag}}
git show {{branch}}~3
git show --oneline -s "commit"
別のbranchのあのファイルをみたい。switchなんかするの嫌だ!!
git show branch:./file
file pathを相対指定できるのは、便利かも。